

#page { overflow-x: hidden; } .gallery-grid-wrapper { display: flex !important; animation: scroll 30s linear infinite; } .gallery-grid-wrapper .gallery-grid-item { min-width: 50%; margin-right: 5%; } @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }